home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #5 / Software USA Volume 4.05.iso / mac / Education / HTML Tricks / Extreme Mac HTML Tricks v2.1 / Extreme Mac HTML Tricks v2.1.rsrc / TEXT_132.txt < prev    next >
Text File  |  1996-10-31  |  1KB  |  71 lines

  1.  
  2.  
  3.     Below are different ways you can align your text on your page, to give it a sharper look. Each example gives the text a professional look to the lists.
  4.  
  5. Unordered List (Dotted)
  6. <UL>
  7. <LI>First row
  8. <LI>Second row
  9. </UL>
  10. ‚Ä¢This would look like this:
  11.      ‚Ä¢First row
  12.      ‚Ä¢Second row
  13.  
  14. Ordered List (Numbered)
  15. <OL>
  16. <LI>First row
  17. <LI>Second row
  18. </OL>
  19. ‚Ä¢This would look like this:
  20.      1. First row
  21.      2. Second row
  22.  
  23. Preformatted Text - The text here will appear on the web page as it does in the html code.
  24. <PRE>
  25. This    Will
  26. stay      as
  27. written exactly
  28. </PRE>
  29. ‚Ä¢This will look like this:
  30.  
  31.  
  32.  
  33.  
  34. Add one of these into your html. I'll use the preformatted text in my example. The preformatted text is good at making pictures with letters. Here's a quick example:
  35. <pre>
  36.   //   //   //////
  37.  /////        //
  38. // //    //////
  39. </pre>
  40.  
  41. ‚Ä¢Your page should now look similar to:
  42.  
  43.                                                                             Extreme Mac
  44.  //   //   //////
  45.  /////        //
  46. // //    //////
  47.  
  48.  
  49.                                                                     
  50. ‚Ä¢Your html code should now look similar to:
  51.  
  52.  
  53. <html>
  54. <HEAD>
  55. <TITLE>Put the Title Here</TITLE>
  56. </HEAD>
  57. <body bgcolor="#ffffff" background="imagelocation.gif" text="#000000" link="#0000ff" vlink="#00005a">
  58. <FONT COLOR="DD0000"> <center><h1><b>Extreme Mac</b></h1></center></FONT> 
  59. <p>
  60. <pre>
  61.   //   //   //////
  62.  /////        //
  63. // //    //////
  64. </pre>
  65. <p>
  66. </body>
  67. </html>
  68.  
  69.  
  70.  
  71.